home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Sources / Panes / PedPaneWhite.cc < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-24  |  348 b   |  28 lines

  1. /*    ===============
  2.  *    PedPaneWhite.cc
  3.  *    ===============
  4.  */
  5.  
  6. #include "PedestalDebugging.h"
  7.  
  8. #include <QuickDraw.h>
  9.  
  10. #include "PedPaneWhite.hh"
  11.  
  12. #include "PedView.hh"
  13.  
  14. PedPaneWhite::PedPaneWhite(PedView &inSuperView)
  15. : PedPane(inSuperView)
  16. {
  17. }
  18.  
  19. PedPaneWhite::~PedPaneWhite()
  20. {
  21. }
  22.  
  23. void
  24. PedPaneWhite::Draw()
  25. {
  26.     ::EraseRect(&qd.thePort->portRect);
  27. }
  28.